home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 January - Disc 2
/
Macworld (1999-01) (Disk 2).dmg
/
Serious Demos
/
Symbolic Composer 4.2
/
Environment
/
System
/
SYMBOL
/
Symbol Processors
/
Mix
/
symbol-mix
next >
Wrap
Text File
|
1998-10-23
|
514b
|
15 lines
symbol-mix symbol-pattern &rest symbol-patterns
Mixes two or more symbol patterns symbol by symbol. It can be used to construct chords by summing different melodies together. Also, if you have many separate drum tracks that you want to mix down, it can be done with this function.
(symbol-mix '(a b c) '(c d e))
--> (ab bd ce)
(symbol-mix '(a = b) '(a a a))
--> (a a ba)
(symbol-mix '(a (+1 b c -2 d) c) '(a f c))
--> (a (1 b c -2 d f) c)
(symbol-mix '(a (+1 a) b) '((-1 a) (+2 b)))
--> ((a -1 a) (1 a 2 b) b)